/* ============================= */
/* PREMIUM LANDING PAGE STYLES   */
/* ============================= */

/* Ensure all elements visible by default */
.stat-card,
.service-card,
.logo-item,
.portfolio-item,
.team-card {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Premium Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 80px 100px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at top, rgba(90, 174, 224, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(90, 174, 224, 0.05) 0%, transparent 40%);
    text-align: center;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(90, 174, 224, 0.3);
    top: 10%;
    right: -100px;
    animation: float-orb 8s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(90, 174, 224, 0.2);
    bottom: 20%;
    left: -50px;
    animation: float-orb 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(90, 174, 224, 0.15);
    top: 50%;
    right: 20%;
    animation: float-orb 12s ease-in-out infinite;
}

@keyframes float-orb {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(90, 174, 224, 0.1);
    border: 1px solid rgba(90, 174, 224, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--brand-green);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--brand-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--brand-white);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-green) 0%, #7dd3fc 50%, var(--brand-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--brand-green) 0%, #3d8bc0 100%);
    color: var(--brand-black);
    padding: 18px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(90, 174, 224, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--brand-white);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s;
}

.btn-secondary:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
    transform: translateY(-3px);
}

/* Hero Visuals */
.hero-visuals {
    position: relative;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
}

.slider-container {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(90, 174, 224, 0.3);
    box-shadow: 0 0 60px rgba(90, 174, 224, 0.2);
}

.slider {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slide 12s infinite;
}

.slider img {
    width: 33.333%;
    height: 100%;
    object-fit: cover;
}

@keyframes slide {
    0%, 28% { transform: translateX(0); }
    33%, 61% { transform: translateX(-33.333%); }
    66%, 94% { transform: translateX(-66.666%); }
    100% { transform: translateX(0); }
}

.floating-card {
    position: absolute;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    border: 1px solid rgba(90, 174, 224, 0.3);
    border-radius: 16px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    animation: float-card 4s ease-in-out infinite;
}

.floating-card i {
    color: var(--brand-green);
    font-size: 1.3rem;
}

.floating-card span {
    color: var(--brand-white);
    font-weight: 600;
    font-size: 0.95rem;
}

.card-1 {
    top: 10%;
    right: -30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    left: -40px;
    animation-delay: 2s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Premium Stats Section */
.stats-section {
    padding: 100px 80px;
    background: linear-gradient(180deg, transparent 0%, rgba(90, 174, 224, 0.02) 50%, transparent 100%);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    background: rgba(90, 174, 224, 0.1);
    border: 1px solid rgba(90, 174, 224, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--brand-green);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--brand-white);
}

.stats-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-green), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(90, 174, 224, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(90, 174, 224, 0.1);
}

.stat-card.featured {
    background: linear-gradient(145deg, rgba(90, 174, 224, 0.1) 0%, rgba(20, 20, 20, 0.95) 100%);
    border-color: rgba(90, 174, 224, 0.3);
}

.stat-card.featured::before {
    opacity: 1;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(90, 174, 224, 0.2) 0%, rgba(90, 174, 224, 0.05) 100%);
    border: 1px solid rgba(90, 174, 224, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--brand-green);
}

.stat-content {
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-white);
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-green);
}

.stat-card p {
    color: var(--text-secondary);
    margin-top: 10px;
    font-size: 1rem;
}

/* Premium Services Section */
.services-section {
    padding: 120px 80px;
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--brand-white);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(90, 174, 224, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(90, 174, 224, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.service-card-inner {
    position: relative;
    z-index: 1;
}

.service-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(90, 174, 224, 0.2) 0%, rgba(90, 174, 224, 0.05) 100%);
    border: 1px solid rgba(90, 174, 224, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--brand-green);
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--brand-green) 0%, rgba(90, 174, 224, 0.8) 100%);
    color: var(--brand-black);
    transform: scale(1.1) rotate(5deg);
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--brand-white);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-green);
    font-weight: 600;
    transition: all 0.3s;
}

.service-link:hover {
    gap: 15px;
    color: var(--brand-white);
}

/* Premium Collaborations Section */
.collab-section {
    padding: 100px 80px;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.collab-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(90, 174, 224, 0.3), transparent);
}

.collab-header {
    text-align: center;
    margin-bottom: 60px;
}

.collab-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-white);
}

.logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-item {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-secondary);
    opacity: 0.6;
    transition: all 0.4s;
    cursor: pointer;
    letter-spacing: 2px;
}

.logo-item:hover {
    opacity: 1;
    color: var(--brand-green);
    transform: scale(1.1);
}

/* Premium Portfolio Section */
.portfolio-section {
    padding: 120px 80px;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 80px;
}

.portfolio-header .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--brand-white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.portfolio-item.large {
    grid-row: span 2;
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
}

.portfolio-item.large .portfolio-image {
    min-height: 585px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 30px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-category {
    display: inline-block;
    background: var(--brand-green);
    color: var(--brand-black);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-white);
    margin-bottom: 10px;
}

.portfolio-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-green);
    font-weight: 600;
    transition: all 0.3s;
}

.portfolio-link:hover {
    gap: 15px;
    color: var(--brand-white);
}

.portfolio-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--brand-white);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s;
}

.btn-outline:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
    transform: translateY(-3px);
}

/* Premium Team Section */
.team-section {
    padding: 120px 80px;
    background: linear-gradient(180deg, transparent 0%, rgba(90, 174, 224, 0.02) 50%, transparent 100%);
}

.team-header {
    text-align: center;
    margin-bottom: 80px;
}

.team-header .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--brand-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.team-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(90, 174, 224, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.team-card.featured {
    border-color: rgba(90, 174, 224, 0.3);
    transform: scale(1.05);
}

.team-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(90, 174, 224, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    opacity: 0;
    transition: all 0.4s;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-socials {
    display: flex;
    gap: 15px;
}

.team-socials a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.team-socials a:hover {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: var(--brand-black);
    transform: translateY(-5px);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-white);
    margin-bottom: 8px;
}

.team-info p {
    color: var(--brand-green);
    font-size: 0.95rem;
}

.team-cta {
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 100px 80px;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(90, 174, 224, 0.1) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 1px solid rgba(90, 174, 224, 0.3);
    border-radius: 30px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-green), transparent);
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--brand-white);
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-decoration {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(90, 174, 224, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================= */
/* RESPONSIVENESS                */
/* ============================= */

@media (max-width: 1200px) {
    .hero-section {
        padding: 140px 50px 80px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .slider-container {
        width: 380px;
        height: 380px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .portfolio-item.large {
        grid-row: span 1;
    }
    
    .portfolio-item.large .portfolio-image {
        min-height: 280px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 130px 40px 60px;
        min-height: auto;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 60px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visuals {
        width: 100%;
    }
    
    .slider-container {
        width: 350px;
        height: 350px;
    }
    
    .floating-card {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-card.featured {
        transform: none;
    }
    
    .team-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 20px 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .slider-container {
        width: 280px;
        height: 280px;
    }
    
    .stats-section,
    .services-section,
    .portfolio-section,
    .team-section,
    .cta-section {
        padding: 80px 20px;
    }
    
    .stats-header h2,
    .services-header .section-title,
    .portfolio-header .section-title,
    .team-header .section-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .stat-card {
        padding: 35px 25px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-image {
        min-height: 300px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 50px;
    }
    
    .cta-container {
        padding: 50px 30px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .logos-container {
        gap: 30px;
    }
    
    .logo-item {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 18px;
    }
    
    .stats-header h2,
    .services-header .section-title,
    .portfolio-header .section-title,
    .team-header .section-title {
        font-size: 1.9rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-suffix {
        font-size: 1.8rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-number {
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .cta-container {
        padding: 40px 25px;
    }
    
    .cta-content h2 {
        font-size: 1.7rem;
    }
}

/* ============================= */
/* FOOTER STYLES                 */
/* ============================= */
.main-footer {
    background-color: #0a0a0a;
    padding: 80px 80px 30px;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(90, 174, 224, 0.3), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section {
    position: relative;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--brand-green);
}

.footer-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-links-row:last-child {
    margin-bottom: 0;
}

.footer-links-row a {
    color: var(--text-secondary);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links-row a:hover {
    color: var(--brand-green);
}

.social-section .footer-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.social-icons-row {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.social-icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background-color: transparent;
}

.social-icon-box:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
    transform: translateY(-3px);
}

.back-to-top {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.back-to-top:hover {
    color: var(--brand-green);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--brand-green);
}

@media (max-width: 991px) {
    .main-footer {
        padding: 60px 40px 25px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .social-section {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 50px 20px 25px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .social-section {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 30px;
    }
    
    .footer-legal {
        gap: 20px;
    }
}
